<feed xmlns='http://www.w3.org/2005/Atom'>
<title>{non-gerrit}/qt-labs/widgets-ng.git/src/gui/util/qsystemtrayicon_win.cpp, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/'/>
<entry>
<title>qsystemtrayicon_win.cpp fix determination of NOTIFYICONDATA struct size</title>
<updated>2009-08-25T06:37:07+00:00</updated>
<author>
<name>Joerg Bornemann</name>
<email>joerg.bornemann@nokia.com</email>
</author>
<published>2009-08-24T15:20:47+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=e1309dcfe2b61beb7c3ab23a0250382043dc9168'/>
<id>e1309dcfe2b61beb7c3ab23a0250382043dc9168</id>
<content type='text'>
Now, that we define _WIN32_WINNT as 0x0500, we have no access to guidItem
in NOTIFYICONDATA. Thus, we cannot determine NOTIFYICONDATAW_V2_SIZE.
But in this case, NOTIFYICONDATAW_V2_SIZE is the same as
sizeof(NOTIFYICONDATA).
On Windows CE exists only one version of this struct anyway.

Reviewed-By: mauricek
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now, that we define _WIN32_WINNT as 0x0500, we have no access to guidItem
in NOTIFYICONDATA. Thus, we cannot determine NOTIFYICONDATAW_V2_SIZE.
But in this case, NOTIFYICONDATAW_V2_SIZE is the same as
sizeof(NOTIFYICONDATA).
On Windows CE exists only one version of this struct anyway.

Reviewed-By: mauricek
</pre>
</div>
</content>
</entry>
<entry>
<title>Windows compile fix for code that needs WINVER &gt; 0x500</title>
<updated>2009-08-24T13:52:16+00:00</updated>
<author>
<name>Joerg Bornemann</name>
<email>joerg.bornemann@trolltech.com</email>
</author>
<published>2009-08-24T13:50:51+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=2c21acaee645590f907672b6cfc4d84597444418'/>
<id>2c21acaee645590f907672b6cfc4d84597444418</id>
<content type='text'>
This is premature and is about to change, probably.

Reviewed-by: thierry
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is premature and is about to change, probably.

Reviewed-by: thierry
</pre>
</div>
</content>
</entry>
<entry>
<title>Update contact URL in license headers.</title>
<updated>2009-08-12T03:21:45+00:00</updated>
<author>
<name>Jason McDonald</name>
<email>jason.mcdonald@nokia.com</email>
</author>
<published>2009-08-12T03:21:45+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=812b3940012f3c04fb79b8fa8c4ac64ff8051dd4'/>
<id>812b3940012f3c04fb79b8fa8c4ac64ff8051dd4</id>
<content type='text'>
Reviewed-by: Trust Me
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Trust Me
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix QSystemTrayIcon causing three activated signals on doubleclick</title>
<updated>2009-07-24T15:46:11+00:00</updated>
<author>
<name>Jens Bache-Wiig</name>
<email>jbache@trolltech.com</email>
</author>
<published>2009-07-24T15:41:56+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=960c0a8661e3df311a85075b0ff610c4031c6012'/>
<id>960c0a8661e3df311a85075b0ff610c4031c6012</id>
<content type='text'>
The problem was that on Windows, we would activate on WM_LButtonUp,
but a double click after activating will also generate a second
WM_LButtonUp. Hence we get three activations. The fix was basically
to filter out the second WM_LButtonUP, something we also do in
qapplication_win.cpp.

Task-number: 205499
Reviewed-by: denis
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The problem was that on Windows, we would activate on WM_LButtonUp,
but a double click after activating will also generate a second
WM_LButtonUp. Hence we get three activations. The fix was basically
to filter out the second WM_LButtonUP, something we also do in
qapplication_win.cpp.

Task-number: 205499
Reviewed-by: denis
</pre>
</div>
</content>
</entry>
<entry>
<title>support context menu for system tray icons on Windows CE</title>
<updated>2009-07-14T14:57:40+00:00</updated>
<author>
<name>Joerg Bornemann</name>
<email>joerg.bornemann@trolltech.com</email>
</author>
<published>2009-07-14T14:50:51+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=5a2027850cd476046143f70d19a7fc07b76d46e7'/>
<id>5a2027850cd476046143f70d19a7fc07b76d46e7</id>
<content type='text'>
This is Windows CE only. For Windows mobile we don't support context
menus for system tray icons.

Task-number: 250528
Reviewed-by: thartman
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is Windows CE only. For Windows mobile we don't support context
menus for system tray icons.

Task-number: 250528
Reviewed-by: thartman
</pre>
</div>
</content>
</entry>
<entry>
<title>Getting rid of compiler warnings on windows</title>
<updated>2009-07-07T13:29:05+00:00</updated>
<author>
<name>Thierry Bastian</name>
<email>thierry.bastian@nokia.com</email>
</author>
<published>2009-07-07T13:29:05+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=1a112561126c7f2148d91e40a6c3f52ccf506fd5'/>
<id>1a112561126c7f2148d91e40a6c3f52ccf506fd5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>src/gui: Remove QT_WA and non-Unicode code paths, dropping Win9x and NT support</title>
<updated>2009-07-01T09:51:14+00:00</updated>
<author>
<name>miniak</name>
<email>milan.burda@gmail.com</email>
</author>
<published>2009-07-01T09:49:54+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=55137901012db28857fe7638e63c78743e277c56'/>
<id>55137901012db28857fe7638e63c78743e277c56</id>
<content type='text'>
Also - Make winPeekMessage() &amp; winPostMessage() obsolete
     - FlashWindowEx, IsValidLanguageGroup functions no longer resolved
       dynamically (available on &gt;= Windows 2000)
     - LoadIcon/LoadCursor -&gt; LoadImage w/LR_SHARED for system
       icons/cursors
     - qsystemtrayicon_win: use Shell_NotifyIconGetRect if available
       (Windows 7)

Merge-request: 604
Reviewed-by: Marius Storm-Olsen &lt;marius@trolltech.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also - Make winPeekMessage() &amp; winPostMessage() obsolete
     - FlashWindowEx, IsValidLanguageGroup functions no longer resolved
       dynamically (available on &gt;= Windows 2000)
     - LoadIcon/LoadCursor -&gt; LoadImage w/LR_SHARED for system
       icons/cursors
     - qsystemtrayicon_win: use Shell_NotifyIconGetRect if available
       (Windows 7)

Merge-request: 604
Reviewed-by: Marius Storm-Olsen &lt;marius@trolltech.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge license header changes from 4.5</title>
<updated>2009-06-16T15:15:48+00:00</updated>
<author>
<name>Volker Hilsheimer</name>
<email>volker.hilsheimer@nokia.com</email>
</author>
<published>2009-06-16T15:15:48+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=e73e36a16bb51fa66bdccc780f177e2c4d5d8092'/>
<id>e73e36a16bb51fa66bdccc780f177e2c4d5d8092</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update license headers as requested by the marketing department.</title>
<updated>2009-06-16T12:08:09+00:00</updated>
<author>
<name>Jason McDonald</name>
<email>jason.mcdonald@nokia.com</email>
</author>
<published>2009-06-16T12:08:09+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=858c70f768eeb2d65cefd4115f4e9089b588b2d0'/>
<id>858c70f768eeb2d65cefd4115f4e9089b588b2d0</id>
<content type='text'>
Reviewed-by: Trust Me
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Trust Me
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed qApp and replaced with QApplication:: for static member calls</title>
<updated>2009-06-11T14:07:03+00:00</updated>
<author>
<name>Thierry Bastian</name>
<email>thierry.bastian@nokia.com</email>
</author>
<published>2009-06-11T11:39:09+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/{non-gerrit}/qt-labs/widgets-ng.git/commit/?id=35e2a2978a2318ca025393a8f67d30746c8b78fc'/>
<id>35e2a2978a2318ca025393a8f67d30746c8b78fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
